Ternary 三元運算子


Posted by Rich on 2021-04-22

console.log(10 > 5 ? 'bigger' : 'smaller')
output:bigger

condition ? true : false
條件 ? true就執行 : false就執行


#note







Related Posts

JavaScript 正規表達式 Regex

JavaScript 正規表達式 Regex

[JS102] Module

[JS102] Module

OOP - 5 抽象類別與介面 (2)

OOP - 5 抽象類別與介面 (2)


Comments